* {
  scrollbar-width: none;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Nuckle", Sans-serif;
  font-family: "Zalando Sans", sans-serif;
  font-weight: 500;
}

body {
  /* background-color: blue; */
  background-color: #FCE6E6;
  height: 100vh;
  width: 100vw;
  font-size: 1rem;
  user-select: none;
}

.wht {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  position: fixed;
  bottom: 90px;
  right: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  z-index: 2;

  &:hover {
    box-shadow: 1px 1px 10px #00ff15;
    scale: 1.2;
  }
}

.wht a {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #00ff15;
  color: #FCE6E6;
  text-decoration: none;
}

.wht a i {
  color: gainsboro;
  background-color: #00ff15;
  font-size: 1.5rem;
}

.headerr {
  overflow: hidden;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0rem;
  z-index: 2;
  backdrop-filter: blur(50px);
}

@keyframes navAni {
  from {
    margin-bottom: 20rem;
    opacity: 0;
  }

  to {
    margin-bottom: 0rem;
    opacity: 1;
  }
}

nav {
  height: 80%;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #310F11;
  border-radius: 0.7rem;
  box-shadow: 0.1px 0.1px 10px #310F11;
  overflow: hidden;

  animation: navAni 1.5s ease-in-out 0s 1 alternate;
}

nav>a {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 150px;
  background-color: #310F11;
}

nav>a img {
  height: 100%;
  width: 65px;
}

.navBar-options {
  height: 100%;
  /* background-color: #00ff15; */
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navBar-options a {
  /* background-color: blueviolet; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FCE6E6;
  padding: 0rem 1.5rem;
  /* margin: 0rem 0.05rem; */
  font-weight: 600;
  z-index: 1;
}

.clr1 {
  background-color: #EE0100;
  height: 100%;
  left: 74.38%;
  width: 25.62%;
  top: 0;
  position: absolute;
  border-radius: 0.5rem;
  transition: 0.5s;
  box-shadow: 0.1px 0.1px 10px #EE0100;
}

.navBar-options a:nth-child(1):hover~.clr1 {
  left: 0rem;
  width: 17.70%;
}

.navBar-options a:nth-child(2):hover~.clr1 {
  left: 17.70%;
  width: 17.33%;
}

.navBar-options a:nth-child(3):hover~.clr1 {
  left: 35.03%;
  width: 17.40%;
}

.navBar-options a:nth-child(4):hover~.clr1 {
  left: 52.43%;
  width: 21.95%;
}

.navBar-options a:nth-child(5):hover~.clr1 {
  left: 74.38%;
  width: 25.62%;
}

.menuIcon {
  display: none;
}

.menuIcon i {
  color: #FCE6E6;
  font-size: 1.8rem;
  /* padding: 0rem 1rem; */
  margin-right: 2rem;
  cursor: pointer;
}


/* MidPart */





.midPart {
  height: 45rem;
  width: 50rem;
  margin: 3rem auto;
  margin-top: 10rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  /* background: linear-gradient(#FCE6E6); */
  background-image: conic-gradient(#EE0100, #310F11, #EE0100);
  border-radius: 1rem;
  /* overflow: hidden; */
  position: relative;
}

.midPart::after,
.midPart::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 48.3rem;
  width: 50.3rem;
  background-image: conic-gradient(#EE0100, #310F11, #EE0100);
  border-radius: 1rem;
}

.midPart::before {
  filter: blur(1.5rem);
  /* opacity: 0.5; */
}


@keyframes midHeadAni {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.midPart header {
  width: 45rem;
  margin: 0rem;

  animation-name: midHeadAni;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-direction: alternate;
}

.txt1 {
  font-family: "Caveat Brush", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  margin: 0.5rem 0rem;
  color: #FCE6E6;
  text-align: center;

}

.txt2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  color: #FCE6E6;
  transition: 0.5s;
  /* text-shadow: 1px 1px 0px #FCE6E6; */
  margin: 0rem;
}

.txt2 span {
  text-shadow: 1px 1px 10px #e1d5d5;
  color: #241a1a;
  font-weight: 700;
}

@keyframes midFormAni {
  from {
    transform: translateY(-10%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.midPart .midForm {
  width: 35rem;
  height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* transform: translateY(100%); */

  animation-name: midFormAni;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-direction: alternate;
}

.midForm .allField {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.allField .field {
  height: 60px;
  margin: 0.2rem;
  width: calc(100%);
  position: relative;

}

.field input,
.message textarea {
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0px 18px 0px 48px;
  border: 1px solid #bfbfbf;
  border-radius: 0.5rem;
  /* font-size: 12px; */
  font-size: 0.9rem;

}

.field input::placeholder,
.message textarea::placeholder {
  color: #bfbfbf;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.field input:focus,
.message textarea:focus {
  border: 1px solid #EE0100;
  box-shadow: 1px 1px 10px #EE0100;
}

.midForm i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #bfbfbf;
  font-size: 15px;
}

.field input:focus~i,
.message textarea:focus~i {
  color: #EE0100;
}

.midForm .message {
  position: relative;
  margin: 0px 0px;
}

.midForm .message i {
  top: 25px;
  /* font-size: 15px; */
}

.midForm .message textarea {
  padding: 15px 20px 0px 48px;
  max-width: 100%;
  min-width: 100%;
  min-height: 120px;
  max-height: 240px;
}

#txtMsg {
  font-size: 0.9rem;
}

.buttonArea {
  margin: 25px 0px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.buttonArea button {
  padding: 13px 25px;
  font-size: 18px;
  border: none;
  background-color: #EE0100;
  color: #FCE6E6;
  border-radius: 0.5rem;
  height: 3.5rem;
  cursor: pointer;
  box-shadow: 0.1px 0.1px 10px #EE0100;
  font-weight: 600;
  transition: 0.5s;
}

.buttonArea button:hover {
  box-shadow: 0.1px 0.1px 30px #EE0100;

}

.buttonArea span {
  color: #FCE6E6;
  padding: 0.5rem;
  display: none;
  font-size: 0.9rem;
}

.complainBox {
  background-color: #00ff15;
  height: 10rem;
  width: 50rem;
  margin: 3rem auto;
  padding: 1rem 0rem;
  border-radius: 1rem;
  display: flex;
  /* align-items: center; */
  justify-content: space-evenly;
  flex-direction: column;
  background-image: conic-gradient(#EE0100, #310F11, #EE0100);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}



.complainBox:hover {
  height: 35rem;
}

.complainBox header {
  /* background-color: #00ff15; */
  width: 45rem;
  align-self: center;

  animation-name: midHeadAni;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-direction: alternate;
}

.complainBox form {
  /* background-color: #00ff15;  */
  width: 35rem;
  align-self: center;
  display: none;
}

.complainBox:hover form {
  display: block;
}


/* Footer */

footer {
  background-color: #310F11;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.txt7 {
  padding: 0.4rem 0rem;
  color: #FCE6E6;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.connect {
  /* background-color: #00ff15; */

}

.footer-bottom {
  margin-top: 2rem;
  /* background-color: #EE0100; */
  color: #FCE6E6;
  opacity: 0.7;
  font-size: 1rem;
  font-weight: 300;
}

.socialMediaa {
  display: flex;
  gap: 1rem;
}

.socialMediaa a {
  padding: 1.8rem;
  border: 1px solid #FCE6E6;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* width: 70px; */
  opacity: 0.7;
}

.socialMediaa a {

  &:nth-child(1):hover {
    background: linear-gradient(#17A9FD, #0165E1);
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #0165E1;
  }

  &:nth-child(2):hover {
    background-color: #00ff15;
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #00ff15;
  }

  &:nth-child(3):hover {
    background-color: #e1002d;
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #e1002d;
  }

  &:nth-child(4):hover {
    background: linear-gradient(#405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #E1306C;
  }

  &:nth-child(5):hover {
    background-color: #0a66c2;
    box-shadow: 2px 2px 10px #0a66c2;
    opacity: 1;
    border: none;
  }

  &:nth-child(6):hover {
    background-color: #000000;
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #000000;
  }

  &:nth-child(7):hover {
    background-color: #d93025;
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #d93025;
  }
}

.socialMediaa i {
  /* background-color: #F34444; */
  color: #FCE6E6;
  font-size: 1.5rem;

}





@media (max-width: 480px) {}

@media (max-width: 768px) {}



@media (max-width: 1500px) {
  nav {
    width: 80%;
  }
}

@media (max-width: 1024px) {
  .navBar {
    width: 95%;
  }

  .wht {
    display: none;
  }

  .menuIcon {
    display: block;
  }

  .navBar-options {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    text-align: center;
    background-color: #310F11;
    gap: 0;
    width: 95%;
    margin: auto;
    height: 350px;
    border-radius: 1rem;
    box-shadow: 0.1px 0.1px 10px #310F11;
    overflow: visible;
  }

  .navBar-options a {
    padding: 20px;
    /* border: 0.3px solid #e1002d; */
    width: 100%;
    border-radius: 0.7rem;
  }

  .headerr {
    overflow: visible;
  }

  #menuList {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }

  .clr1 {
    top: 280px; 
    height: 65px;
    width: 100%;
    left: 0rem;
  }

}